diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-11-07 07:28:55 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-11-07 07:28:55 +0000 |
| commit | 9230272dfef34360ca9350423cea37cb5bdeae70 (patch) | |
| tree | 6817e7e725193044dcff70736096196ac970367d /app/api/projects/[projectId] | |
| parent | 2072e5d9720bac85e419736b9e201aaab526ecfc (diff) | |
(임수민) 데이터룸 로그 요청사항 수정
Diffstat (limited to 'app/api/projects/[projectId]')
| -rw-r--r-- | app/api/projects/[projectId]/stats/route.ts | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/app/api/projects/[projectId]/stats/route.ts b/app/api/projects/[projectId]/stats/route.ts index d3d42a17..cd17e70d 100644 --- a/app/api/projects/[projectId]/stats/route.ts +++ b/app/api/projects/[projectId]/stats/route.ts @@ -267,13 +267,7 @@ export async function GET( recent, }; - return NextResponse.json(stats, { - headers: { - 'Cache-Control': 'no-store, no-cache, must-revalidate, proxy-revalidate', - 'Pragma': 'no-cache', - 'Expires': '0', - }, - }); + return NextResponse.json(stats); } catch (error) { console.error('통계 조회 오류:', error); |
